home *** CD-ROM | disk | FTP | other *** search
/ PC-SIG: World of Education / PC-SiG's World of Education.iso / run / 2602 / constnt.hlp < prev    next >
Text File  |  1989-02-03  |  3KB  |  60 lines

  1. Constants are either explicit decimal values, dates, times, names that
  2. have been assigned a constant value, or one of the predefined keywords
  3. given below.  Constants do not cause implicit loops or create 'variables'
  4. when used in Assignment statments.
  5.  
  6. All constants are treated as double precision floating point values (64
  7. bits) even when a decimal point is not included in the value.
  8. +
  9. Date and time values (when embedded in source code) must be preceded by
  10. a '#' character so DAN does not mistake the '/' for a divide symbol or
  11. the ':' for an illegal character.  Some examples are:
  12.  
  13.       Mass = 120000;           {explicit decimal constant}
  14.       day = #9/29/86;          {a date}
  15.       Now = #13:21:59.12;      {a time}
  16.  
  17. 'Mass', 'day', and 'Now' are all constants even though they are defined
  18. with Assignment statements.  They are treated as if they were constants
  19. in any subsequent usage.  Hence, 'Halfmass = Mass/2;' defines another
  20. constant, while 'force = Mass * OPER;' defines a variable (force) since
  21. OPER is a variable.
  22. +
  23. Date constants are entered in one of the following forms:
  24.  
  25.       mm/dd/yy     mm/dd/yyyy     mm/dd
  26.  
  27. If the years field is less than 100, DAN converts the value as if it
  28. were 19yy.  DAN converts the first two forms to a Julian date while
  29. the third form (mm/dd) is converted to a day of the year number (i.e.
  30. 1/1 == 1 and 12/31 == 365).  Mathematical operations may be performed
  31. on the values.  For example:
  32.  
  33.       START = #1/1/86 + 23;
  34. +
  35. Time constants are entered in one of the following forms:
  36.  
  37.            hh:mm{A/P}    hh:mm:ss.sss{A/P}    (A & P optional)
  38.  
  39. The leading digits are considered to be an hours value if only one colon
  40. is entered.  Time should be entered in 24 hour format (e.g. 2 PM ==
  41. 14:00) unless an 'A' or 'P' is appended to indicate AM or PM time (e.g.
  42. 2 PM == 2:00P).  The values are converted to a floating point number of
  43. seconds and may be used in DANAL expressions.  For example:
  44.  
  45.            BIAS = #9:30:15.235;
  46. +
  47. Statements containing only constants execute only once (except PLOT
  48. statements); no implicit looping takes place unless the statement is
  49. deliberately grouped via the ampersand terminator with other statements
  50. containing variables.  For example,
  51.  
  52.            YMIN = 0;
  53.  
  54. would only execute one time, while
  55.  
  56.            YMIN = 0 & YMAX = MAX(force);
  57.  
  58. would set YMIN to 0 for each step time in the current processing period
  59. and thus slow down execution of the grouped statements.
  60.